dead code meaning in English
死代码 在程序操作过程中永远不可能被执行到的代码。
无作用程序代码
Examples
- Use dead code elimination to implement assertions
使用无效代码清除策略实现断言。 - Loop is effectively dead code , and the compiler is designed to eliminate any dead code it can identify
循环实际上是死代码,编译器会清除任何发现的死代码。 - Leaving dead code unattended can eventually lead to performance issues as the system becomes weighed down with unused code
对死代码置之不理,最终可能会因为系统中的未用代码过多而导致性能问题。 - Dead code separation code that is not called during profiling is moved to a special section that is appended to the end of the set of sections
死代码分隔将配置过程中没有调用的代码移到一个特殊的节中,该节附加在一组节的末尾。 - The cla ic compiler optimizatio , such as dead code elimination , co tant folding , co tant propagation , elimination of partial redundancies , loop unrolling , etc . , are static analyses
典型的编译器最优化,如死代码消除、常数合并、常数传送、部分冗余的消除、循环展开等等,是静态分析。